@charset "utf-8";

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

@media screen and (min-width: 0px) {
  :root {
    --bar-width: 39px;
    --bar-height: 6px;
    --hamburger-gap: 5px;
    --foreground: white;
    --hamburger-margin: 8px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-width: 320px;
  }
  body {
    background-color: #002b50;
    font-family: Arial, Helvetica, sans-serif;
    height: auto;
  }
  #page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1024px;
    margin: 0 auto;
  }
  .container {
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 450px;
    min-height: 100%;
  }
  .banner-wrapper {
    margin: auto;
    width: 100%;
    display: flex;
    z-index: 1;
    margin: 0 auto;
    box-shadow: 0px 0px 20px #002b50;
    position: sticky;
    top: 0;
    transition: 0.1s;
    width: 100%;
  }

  .home {
    position: absolute;
    width: 40%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .banner-wrapper.scrolled {
    width: 100%;
  }

  #banner {
    width: 100%;
    border-width: 2px 2px 2px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
  }
  .hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    z-index: 1000;
  }
  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing);
  }
  .hamburger-menu input {
    appearance: none;
    padding: 0px;
    margin: 0px 20px 0px 0px;
    outline: none;
    pointer-events: none;
  }

  body:has(.hamburger-menu input:checked) {
    overflow: hidden;
  }

  .hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
    margin-right: 10px;
  }
  .hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
    margin-right: 10px;
  }
  .hamburger-menu input:checked {
    opacity: 0;
    width: 0px;
  }
  .sidebar {
    transition: 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    padding: 0px;
    background-color: #002b50;
    position: absolute;
    top: 37px;
    left: 140px;
    z-index: 2;
    text-align: left;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hamburger-menu:has(input:checked) + .sidebar {
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }

  .nav-menu ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    gap: 15px;
  }
  .nav-menu li a {
    color: #ff9601;
    text-decoration: none;
    font-size: 18px;
  }
  hr.gradient {
    height: 2px;
    width: 93.75%;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
      90deg,
      rgba(9, 9, 121, 1) 0%,
      rgba(74, 144, 226, 1) 50%,
      rgba(9, 9, 121, 1) 100%
    );
  }
  .content-wrapper {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    width: calc(100% - 20px);
    border-width: 2px 2px 2px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    padding: 5px 5px 5px 5px;
    color: white;
    text-align: center;
  }
  #box1 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  table.left {
    border-collapse: collapse;
    width: 100%;
  }
  table.left td {
    border: none;
    padding: 0;
  }
  .col1 {
    width: 66.66%;
  }
  .col2 {
    width: 33.33%;
    vertical-align: bottom;
  }
  #title-text {
    color: #ff9601;
    padding: 20px;
    padding-bottom: 25px;
    padding-right: 0;
    text-align: left;
    font-weight: bold;
    font-size: 15px !important;
    margin: 0;
    line-height: 1.3;
  }

  p,
  ul p {
    line-height: 1.3 !important;
  }

  #cartoon {
    width: 100%;
    max-width: 320px;
  }
  #box2 {
    margin-left: auto;
    padding: 20px;
    position: relative;
    width: 100%;
    font-size: 14px !important;
    text-align: left;
    background-color: white;
    color: black;
  }
  #box3 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  #landscape_box3 {
    display: none;
  }
  #tablet_box3 {
    display: none;
  }
  #tablet_landscape_box3 {
    display: none;
  }
  table.grid {
    border-collapse: collapse;
  }
  table.grid td.desciption {
    padding: 10px;
    text-align: center;
  }
  td.description img {
    height: 100%;
    width: 100%;
  }
  table.grid td.service {
    text-align: center;
    background-color: #4a90e2;
    color: #ff9601;
    font-weight: bold;
    padding: 10px;
  }
  table.grid td.service a {
    text-align: center;
    text-decoration: none;
    background-color: #4a90e2;
    color: #ff9601;
    font-weight: bold;
  }
  table.grid td.service a:active {
    text-align: center;
    text-decoration: none;
    background-color: #4a90e2;
    color: red;
    font-weight: bold;
  }
  #content {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_1 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
    margin: 10px auto;
  }
  table.table_3 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  .footer {
    padding: 15px 20px;
    margin: auto;
    position: relative;
    width: calc(100% - 20px);
    border-width: 2px 2px 0px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 0px;
    margin-top: auto;
    color: white;
    text-align: center;
    font-size: 14px;
  }

  .footer b {
    display: block;
    margin-top: 10px;
  }

  .content {
    border: 2px solid #4a90e2;
    border-radius: 5px 5px 5px 5px;
    padding: 20px;
    color: white;
    text-align: center;
    margin: 0 auto;
    width: calc(100% - 20px);
  }

  textarea {
    width: 100%;
  }

  .tablet-only {
    display: none;
  }
  .mobile-only {
    display: initial;
  }

  .row-to-col {
    display: flex;
    flex-direction: column;
  }

  .row-to-col #title-text {
    padding: 20px;
  }

  .row-to-col td {
    width: 100%;
  }

  .row-to-col .happy_col1 {
    width: 200%;
  }

  .row-to-col .happy_col1 #title-text {
    text-align: center;
  }

  .row-to-col .happy_col2 {
    width: 200%;
    padding-bottom: 20px;
  }

  .social-buttons {
    display: flex;
    flex-direction: column;

    gap: 10px;
    padding: 10px;
    /*    max-width: 600px; */
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .social-button {
    display: flex;
    flex-direction: row;
    padding: 10px;
    align-items: center;

    gap: 10px;
    width: 100%;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 0;
  }

  .social-button p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.1;
    margin-bottom: -4px;
  }

  .social-button img {
    width: 25px;
    height: 25px;
  }

  .facebook {
    background-color: #3b5998;
  }

  .linkedin {
    background-color: #0077b5;
  }

  .contact-us {
    background-color: #4a90e2;
  }

  .nav-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 480px) {
  :root {
    --bar-width: 45px;
    --bar-height: 8px;
    --hamburger-gap: 5px;
    --foreground: white;
    --hamburger-margin: 8px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  body {
    background-color: #002b50;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
  }

  .row-to-col {
    display: table-row;
  }

  .row-to-col .col1 {
    width: 66%;
  }

  .row-to-col .col2 {
    width: 33%;
  }

  .row-to-col .happy_col1 #title-text {
    text-align: start;
  }

  .row-to-col .happy_col1 {
    width: 66%;
  }

  .row-to-col .happy_col2 {
    width: 33%;
    padding-top: 20px;
    padding-bottom: 0;
  }

  #page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .container {
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 450px;
    min-height: 100%;
  }
  .banner-wrapper {
    width: 100%;

    display: flex;
    z-index: 1;
  }
  #banner {
    width: 100%;
  }
  .hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    cursor: pointer;
    padding-right: 10px;
  }
  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing);
  }
  .hamburger-menu input {
    appearance: none;
    padding: 0px;
    margin: 0px 20px 0px 0px;
    outline: none;
    pointer-events: none;
  }
  .hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
    margin-right: 10px;
  }
  .hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
    margin-right: 10px;
  }
  .hamburger-menu input:checked {
    opacity: 0;
    width: 0px;
  }
  .sidebar {
    transition: 0.3s ease-in-out;
    padding: 0px;
    background-color: #002b50;
    z-index: 2;
    text-align: left;
  }
  .hamburger-menu:has(input:checked) + .sidebar {
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu ul {
    list-style-type: none;
  }

  .nav-menu li a {
    color: #ff9601;
    text-decoration: none;
  }
  hr.gradient {
    height: 2px;
    width: 93.75%;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
      90deg,
      rgba(9, 9, 121, 1) 0%,
      rgba(74, 144, 226, 1) 50%,
      rgba(9, 9, 121, 1) 100%
    );
  }
  .content-wrapper {
    padding: 0 20px;
    width: calc(100% - 20px);
    position: relative;
    border-width: 2px 2px 2px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    padding: 5px 5px 5px 5px;
    color: white;
    text-align: center;
  }
  #box1 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  table.left {
    border-collapse: collapse;
    width: 100%;
  }
  table.left td {
    border: none;
    padding: 0;
  }
  .col1 {
    width: 66.66%;
  }
  .col2 {
    width: 33.33%;
  }
  #title-text {
    color: #ff9601;
    text-align: left;
    font-weight: bold;
    font-size: 16px !important;
    padding: 20px;
    padding-bottom: 25px;
  }
  #cartoon {
    width: 100%;
    max-width: 100%;
  }

  #box2 {
    margin-left: auto;
    position: relative;
    font-size: 16px !important;
    text-align: left;
    background-color: white;
    color: black;
  }
  #box3 {
    display: none;
  }
  #landscape_box3 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  #tablet_box3 {
    display: none;
  }
  #tablet_landscape_box3 {
    display: none;
  }
  table.grid {
    width: 100%;
    border-collapse: collapse;
  }
  table.grid td.desciption {
    padding: 10px;
    text-align: center;
  }
  td.description img {
    height: 100%;
    width: 100%;
  }
  table.grid td.service {
    text-align: center;
    background-color: #4a90e2;
    color: #ff9601;
    font-weight: bold;
  }
  table.grid td.service a {
    text-align: center;
    text-decoration: none;
    background-color: #4a90e2;
    color: #ff9601;
    font-weight: bold;
  }
  table.grid td.service a:active {
    text-align: center;
    text-decoration: none;
    background-color: #4a90e2;
    color: red;
    font-weight: bold;
  }
  #content {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_1 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_3 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  .footer {
    margin: auto;
    position: relative;
    width: calc(100% - 20px);
    border-width: 2px 2px 0px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 0px 0px;

    margin-bottom: 0px;
    margin-top: auto;
    color: white;
    text-align: center;
  }

  .social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .two-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .social-button {
    padding: 12px;
    justify-content: center;
  }

  .social-button img {
    /*  width: 28px;
    height: 28px; */
    margin-left: 0;
  }

  .social-button p {
    text-wrap-mode: nowrap;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --bar-width: 60px;
    --bar-height: 12px;
    --hamburger-gap: 8px;
    --foreground: white;
    --hamburger-margin: 8px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  body {
    background-color: #002b50;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
  }
  #page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .container {
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 1024px;
    min-height: 100%;
  }
  .banner-wrapper {
    width: 100%;
    display: flex;
    z-index: 1;
    height: 95px;
  }
  #banner {
    width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
  }
  .hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    cursor: pointer;
    padding-right: 30px;
    transform: translateY(-40%) scale(0.9);
  }
  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing);
  }
  .hamburger-menu input {
    appearance: none;
    padding: 0px;
    margin: 0px 20px 0px 0px;
    outline: none;
    pointer-events: none;
  }
  .hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
    margin-right: 0px;
  }
  .hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
    margin-right: 0px;
  }
  .hamburger-menu input:checked {
    opacity: 0;
    width: 0px;
  }
  .sidebar {
    transition: 0.3s ease-in-out;
    padding: 0px;
    background-color: #002b50;

    z-index: 2;
    text-align: left;
  }
  .hamburger-menu:has(input:checked) + .sidebar {
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu ul {
    list-style-type: none;
  }

  .nav-menu li a {
    color: #ff9601;
    text-decoration: none;
    font-size: 20px;
  }
  hr.gradient {
    height: 2px;
    width: 93.75%;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
      90deg,
      rgba(9, 9, 121, 1) 0%,
      rgba(74, 144, 226, 1) 50%,
      rgba(9, 9, 121, 1) 100%
    );
  }
  .content-wrapper {
    padding: 0 20px;
    width: calc(100% - 20px);
    position: relative;
    border-width: 2px 2px 2px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    padding: 5px 5px 5px 5px;
    color: white;
    text-align: center;
  }
  #box1 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  table.left {
    border-collapse: collapse;
    width: 100%;
  }
  table.left td {
    border: none;
    padding: 0;
  }
  .col1 {
    width: 66.66%;
  }
  .col2 {
    width: 33.33%;
  }
  #title-text {
    color: #ff9601;
    text-align: left;
    font-weight: bold;
    font-size: 18px !important;
  }
  #cartoon {
    width: 120%;
  }
  #box2 {
    margin-left: auto;
    position: relative;
    text-align: left;
    background-color: white;
    color: black;
  }
  #box3 {
    display: none;
  }
  #landscape_box3 {
    display: none;
  }
  #tablet_box3 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
    display: none;
  }
  #tablet_landscape_box3 {
    display: block;
  }
  table.grid {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border: none;
  }
  table.grid td.desciption {
    width: 50%;
    padding: 0px;
    border: none;
    overflow: hidden;
    vertical-align: top;
  }
  td.description img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
  }
  table.grid td.service {
    height: 100%;
    width: 100%;
  }
  #content {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_1 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_3 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  .footer {
    margin: auto;
    position: relative;
    width: calc(100% - 20px);
    border-width: 2px 2px 0px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 0px 0px;

    margin-bottom: 0px;
    margin-top: auto;
    color: white;
    text-align: center;
  }

  .tablet-only {
    display: initial;
  }
  .mobile-only {
    display: none;
  }

  .social-button img {
    width: 30px;
    margin-left: -30px;
    height: 30px;
  }

  .social-button p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --bar-width: 60px;
    --bar-height: 12px;
    --hamburger-gap: 8px;
    --foreground: white;
    --hamburger-margin: 8px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  body {
    background-color: #002b50;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
  }
  #page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .container {
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 1024px;
    min-height: 100%;
  }
  .banner-wrapper {
    display: flex;
    z-index: 1;
    margin-top: 10px;
  }
  #banner {
    width: 100%;
  }
  .hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    cursor: pointer;
  }
  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing);
  }
  .hamburger-menu input {
    appearance: none;
    padding: 0px;
    margin: 0px 20px 0px 0px;
    outline: none;
    pointer-events: none;
  }
  .hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
    margin-right: 0px;
  }
  .hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
    margin-right: 0px;
  }
  .hamburger-menu input:checked {
    opacity: 0;
    width: 0px;
  }
  .sidebar {
    transition: 0.3s ease-in-out;
    padding: 0px;
    background-color: #002b50;
    z-index: 2;
    text-align: left;
  }
  .hamburger-menu:has(input:checked) + .sidebar {
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu ul {
    list-style-type: none;
  }

  .nav-menu li a {
    color: #ff9601;
    text-decoration: none;
  }
  hr.gradient {
    height: 2px;
    width: 93.75%;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
      90deg,
      rgba(9, 9, 121, 1) 0%,
      rgba(74, 144, 226, 1) 50%,
      rgba(9, 9, 121, 1) 100%
    );
  }
  .content-wrapper {
    padding: 0 20px;

    position: relative;
    border-width: 2px 2px 2px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    padding: 5px 5px 5px 5px;
    color: white;
    text-align: center;
    width: 100%;
  }
  #box1 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  table.left {
    border-collapse: collapse;
    width: 100%;
  }
  table.left td {
    border: none;
    padding: 0;
  }
  .col1 {
    width: 80%;
  }
  .col2 {
    width: 20%;
  }
  #title-text {
    color: #ff9601;
    text-align: left;
    font-weight: bold;
    font-size: 19px !important;
  }
  #cartoon {
    width: 115%;
  }
  #box2 {
    margin-left: auto;
    position: relative;
    text-align: left;
    background-color: white;
    color: black;
  }
  #box3 {
    display: none;
  }
  #landscape_box3 {
    display: none;
  }
  #tablet_box3 {
    display: none;
  }
  #tablet_landscape_box3 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  table.grid {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border: none;
  }
  table.grid td.desciption {
    width: 25%;
    padding: 0px;
    border: none;
    overflow: hidden;
    vertical-align: top;
  }
  td.description img {
    display: inline;
    width: 100%;
    height: auto;
    max-height: 100%;
  }
  table.grid td.service {
    height: 100%;
    width: 100%;
  }
  #content {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_1 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_3 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  .footer {
    margin: auto;
    position: relative;
    width: 100%;
    border-width: 2px 2px 0px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 0px;
    margin-top: auto;
    color: white;
    text-align: center;
  }

  .content {
    width: 100%;
  }

  .social-buttons {
    padding: 10px 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1366px) {
  :root {
    --bar-width: 60px;
    --bar-height: 12px;
    --hamburger-gap: 8px;
    --foreground: white;
    --hamburger-margin: 8px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
  }
  html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  body {
    background-color: #002b50;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
  }
  #page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .container {
    margin: auto;
    position: relative;
    width: 100%;
    max-width: 1024px;
    min-height: 100%;
  }
  .banner-wrapper {
    display: flex;
    z-index: 1;
  }

  .banner-wrapper.scrolled {
    padding: 0;
  }

  #banner {
    width: 100%;
  }
  .hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    cursor: pointer;
  }
  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--foreground);
    border-radius: 9999px;
    transform-origin: left center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing);
  }
  .hamburger-menu input {
    appearance: none;
    padding: 0px;
    margin: 0px 20px 0px 0px;
    outline: none;
    pointer-events: none;
  }
  .hamburger-menu:has(input:checked)::before {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
    margin-right: 0px;
  }
  .hamburger-menu:has(input:checked)::after {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
    margin-right: 0px;
  }
  .hamburger-menu input:checked {
    opacity: 0;
    width: 0px;
  }
  .sidebar {
    transition: 0.3s;
    padding: 0px;
    background-color: #002b50;
    z-index: 2;
    text-align: left;
  }
  .hamburger-menu:has(input:checked) + .sidebar {
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu ul {
    list-style-type: none;
  }

  .nav-menu li a {
    color: #ff9601;
    text-decoration: none;
  }
  hr.gradient {
    height: 2px;
    width: 93.75%;
    border: none;
    border-radius: 6px;
    background: linear-gradient(
      90deg,
      rgba(9, 9, 121, 1) 0%,
      rgba(74, 144, 226, 1) 50%,
      rgba(9, 9, 121, 1) 100%
    );
  }
  .content-wrapper {
    padding: 0 20px;
    width: 100%;
    position: relative;
    border-width: 2px 2px 2px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
    padding: 5px 5px 5px 5px;
    color: white;
    text-align: center;
  }

  #box1 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  table.left {
    border-collapse: collapse;
    width: 100%;
  }
  table.left td {
    border: none;
    padding: 0;
  }
  .col1 {
    width: 80%;
  }
  .col2 {
    width: 20%;
  }
  #title-text {
    color: #ff9601;
    padding: 25px 55px;
    padding-bottom: 30px;
    text-align: left;
    font-weight: bold;
  }
  #cartoon {
    width: 115%;
  }
  #box2 {
    margin-left: auto;
    padding: 25px 55px;
    position: relative;
    text-align: left;
    background-color: white;
    color: black;
  }
  #box3 {
    display: none;
  }
  #landscape_box3 {
    display: none;
  }
  #tablet_box3 {
    display: none;
  }
  #tablet_landscape_box3 {
    margin: auto;
    position: relative;
    display: flex;
    width: 100%;
  }
  table.grid {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border: none;
  }
  table.grid td.desciption {
    width: 25%;
    padding: 0px;
    border: none;
    overflow: hidden;
    vertical-align: top;
  }
  td.description img {
    display: inline;
    width: 100%;
    height: auto;
    max-height: 100%;
  }
  table.grid td.service {
    height: 100%;
    width: 100%;
  }
  #content {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_1 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_2 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  table.table_3 {
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto;
    text-align: center;
  }
  .footer {
    margin: auto;
    position: relative;
    width: 100%;
    border-width: 2px 2px 0px 2px;
    border-color: #4a90e2;
    border-style: solid;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 0px;
    margin-top: auto;
    color: white;
    text-align: center;
  }
}
